From 7a3a16a1cafd3a76fa3d73e932e8dd5fb006e4ba Mon Sep 17 00:00:00 2001 From: "kaf24@firebug.cl.cam.ac.uk" Date: Tue, 25 Apr 2006 08:54:36 +0100 Subject: [PATCH] Fix "make debug" in Xen subtree. Pointed out by Aravindh at Unisys. Signed-off-by: Keir Fraser --- xen/Makefile | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/xen/Makefile b/xen/Makefile index 18e651ad89..a349fd43de 100644 --- a/xen/Makefile +++ b/xen/Makefile @@ -13,12 +13,8 @@ default: build .PHONY: dist dist: install -.PHONY: debug -debug: - objdump -D -S $(TARGET)-syms > $(TARGET).s - .PHONY: build install clean cscope TAGS tags -build install clean cscope TAGS tags:: +build install debug clean cscope TAGS tags:: make -f Rules.mk _$@ .PHONY: _build @@ -38,6 +34,10 @@ _install: $(TARGET).gz $(INSTALL_DATA) include/public/io/*.h $(DESTDIR)/usr/include/xen/io $(INSTALL_DATA) include/public/COPYING $(DESTDIR)/usr/include/xen +.PHONY: _debug +_debug: + objdump -D -S $(TARGET)-syms > $(TARGET).s + .PHONY: _clean _clean: delete-unfresh-files $(MAKE) -C tools clean -- 2.30.2